Cordova - sms
Chapeau
Bronnen
I have implemented sending message from my application using this plugin. It will open the default sms app in the phone with my message content and number but i need send the sms automatically without prompting default sms app ,is there any way to achieve this in cordova?.
Finally i found the solution just leave the Intent as empty will get the desired result.
var intent =''; //leave this empty for sending sms automatically var message='Test message'; sms.send(number, message, intent, success, error)
Onder ondertitel
Paragraaf
2016-10-24 21:57:22